home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / VCL / Lexer / mwDelphiParser.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2004-10-22  |  713 b   |  30 lines

  1. {-----------------------------------------------------------------------------
  2. This Software is placed into Publlic Domain and distributed on an "AS IS" basis,
  3. WITHOUT WARRANTY OF ANY KIND, either express or implied.
  4. The Initial Developer is Martin Waldenburg
  5. (Martin.Waldenburg@T-Online.de).
  6. -----------------------------------------------------------------------------}
  7. unit mwDelphiParser;
  8.  
  9. interface
  10.  
  11. uses
  12.   mwDelphiLanguageElements,
  13.   mwD4NLexer, mwDelphiDirectiveParser;
  14.  
  15. type
  16.   TmwDelphiParser = class(TmwDelphiDirectiveParser)
  17.   public
  18.     procedure Parse; override;
  19.   end;
  20.  
  21. implementation
  22.  
  23. procedure TmwDelphiParser.Parse;
  24. begin
  25.   while Id <> leAtEnd do
  26.     Next;
  27. end;
  28.  
  29. end.
  30.